home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / STRCPY.C < prev    next >
C/C++ Source or Header  |  1997-01-12  |  123b  |  11 lines

  1. /*
  2. ** copy t to s 
  3. */
  4. strcpy(s, t) char *s, *t; {
  5.   char *d;
  6.   d = s;
  7.   while (*s++ = *t++) ;
  8.   return (d);
  9.   }
  10.  
  11.